body {
    background: url("../img/backgroundPhyCh.jpg") no-repeat center
      center/cover;
    min-height: 100vh;
  }
  .container {
    width: 100%;
    min-height: 100vh;
    scroll-behavior: smooth;
    transition: 0.5s;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
  }
  .container.active {
    right: 300px;
  }
  section {
    z-index: 1;
    padding: 20px 40px;
    background: url("../img/backgroundPhyCh.jpg") no-repeat center
      center/cover;
    position: relative;
    background-attachment: fixed;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 70px;
  }
  section h3 {
    margin: 20px;
  }
  section div p {
    padding: 0 40px;
    margin-bottom: 10px;
    text-align: center;
  }
  section .articles {
    display: flex;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
  section .articles .article-showcase {
    height: 170px;
    width: 300px;
    cursor: pointer;
    padding: 20px;
    border: none;
    border-radius: 10px;
    box-shadow: 0px 3px 5px 1px rgba(0, 0, 0, 0.424);
    margin: 15px;
    text-align: center;
    background: rgba(241, 234, 251, 0.515);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    font-size: 16px;
    font-weight: 500;
  }
  @keyframes backgroundglow {
    0% {
      background: #064481;
    }
    50% {
      background: #064481;
      box-shadow: 0px 15px 18px 3px #064481;
    }
    100% {
      background: #064481;
    }
  }
  @media only screen and (max-width: 800px) {
    .articles {
      flex-wrap: wrap;
    }
  }
  
  /* Add styling for the most recent article */
  .recent-article {
    background-color: #ffcc00; /* Yellow background color */
    font-size: 18px; /* Increase font size */
    border: 2px solid #ff6600; /* Orange border */
    border-radius: 5px; /* Rounded border corners */
    padding: 10px; /* Add padding for better readability */
    margin-bottom: 10px; /* Add some space between articles */
  }